home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 71 / MOBICLIC 71.ISO / mac / DATA / COMMUN / temp0001 / 00291_Script_LANCEMENT_SON_RECRE-AVEC_ENREGISTREMENT_DE_LABEL+COUPE_MUSIK < prev    next >
Text File  |  2004-12-05  |  714b  |  27 lines

  1. global gze_Label
  2. property pRef_son,p_coupeMusik,pNo_recre
  3. -----------------
  4. on getPropertyDescriptionList me
  5.   return [\
  6. #pNo_recre:[#comment: "n░ de la rΘcrΘ:",#format:  #integer, #default:1 ],\
  7.   #pRef_son:[#comment: "suffixe du son rubrique:",#format:  #string, #default: 0 ],\
  8. #p_coupeMusik:[#comment: "couper la musique?",#format:  #boolean, #default:FALSE]\
  9. ]
  10. end getPropertyDescriptionList
  11. ---------------------
  12. on prepareFrame me
  13.   cursor -1
  14.   gze_Label = the frameLabel
  15. end
  16. ----------------
  17. on exitFrame me
  18.   if p_coupeMusik then
  19.     coupeson(1)
  20.     niveauSon()
  21.   end if
  22.   if pRef_son > 0 then
  23.     joueson("recr"&gimme2digits(pNo_recre)&"_"&pRef_son)
  24.   end if
  25. end
  26. --------------
  27.